Update all non-major dependencies#521
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.4.14→2.4.1530.3.0→30.4.110.51.0→10.52.024.12.2→24.12.312.12.1→12.13.013.8.0→13.9.016.13.2→16.14.011.1.4→11.1.830.3.0→30.4.219.2.5→19.2.619.2.5→19.2.67.4.0→7.4.1Release Notes
biomejs/biome (@biomejs/biome)
v2.4.15Compare Source
Patch Changes
#9394
ba3480eThanks @dyc3! - Added the nursery ruleuseTestHooksInOrderin thetestdomain. The rule enforces that Jest/Vitest lifecycle hooks (beforeAll,beforeEach,afterEach,afterAll) are declared in the order they execute, making test setup and teardown easier to reason about.#10254
e0a54ccThanks @dyc3! - Added a new nursery ruleuseVueNextTickPromise, which enforces Promise syntax when using VuenextTick.For example, the following snippet triggers the rule:
#10219
64aee45Thanks @dyc3! - Added a new nursery rulenoVueVOnNumberValues, that disallows deprecated number modifiers on Vuev-ondirectives.For example, the following snippet triggers the rule:
#10195
7b8d4e1Thanks @dyc3! - Added the new nursery ruleuseVueValidVFor, which validates Vuev-fordirectives and reports invalid aliases, missing component keys, and keys that do not use iteration variables.#10238
1110256Thanks @dyc3! - Added the recommended nursery rulenoVueImportCompilerMacros, which disallows importing Vue compiler macros such asdefinePropsfromvuebecause they are automatically available.#10201
1a08f89Thanks @realknove! - Fixed #10193:style/useReadonlyClassPropertiesno longer reports class properties as readonly-able when they are assigned inside arrow callbacks nested in class property initializers.#9574
3bd2b6aThanks @Conaclos! - Fixed #9530. The diagnostics oforganizeImportsare now more detailed and more precise. They are also better at localizing where the issue is.#10205
a704a6cThanks @Conaclos! - Fixed #10185. `organizeImports now errors when it encounters an unknown predefined group.The following configuration is now reported as invalid because
:INEXISTENT:is an unknown predefined group.{ "assist": { "actions": { "source": { "organizeImports": { "options": { "groups": [":INEXISTENT:"] } } } } } }#10052
b565bedThanks @minseong0324! - ImprovednoMisleadingReturnType: it now flags union annotations whose extra variants are never returned, and suggests the narrower type (e.g.string | null→string).These functions are now reported because
nullandnumberare included in the return annotations but never returned:#10213
ac30057Thanks @dyc3! - Fixed #9450: HTML and Vue element formatting now preserves child line breaks when an element contains another element child on its own line, instead of collapsing the child element onto the same line.#10275
9ee6c03Thanks @solithcy! - Fixed #10274: Svelte templates with missing expressions no longer parsed asHtmlBogusElement#10143
56798a7Thanks @minseong0324! -noMisleadingReturnTypenow detects misleading return type annotations when object literal properties are initialized withas const.This function is now reported because the return annotation widens a property initialized with
as const:#10143
56798a7Thanks @minseong0324! -noUselessTypeConversionnow detects redundant conversions on object literal properties initialized withas const.This conversion is now reported because
message.valueis inferred as a string literal:#9807
0ae5840Thanks @dyc3! - Added the new nursery ruleuseThisInClassMethods, based on ESLint'sclass-methods-use-this.The rule now reports instance methods, getters, setters, and function-valued instance fields that do not use
this, andbiome migrate eslintpreserves the supportedignoreMethods,ignoreOverrideMethods, andignoreClassesWithImplementsoptions.Invalid:
#10258
e7b18f7Thanks @ematipico! - Improved linter performance by narrowing the query nodes for several lint rules, reducing how often they are evaluated.#10273
04e22a1Thanks @dyc3! - Fixed #10271: The HTML parser now correctly parsesofas text content when in text contexts.#9838
83f7385Thanks @dyc3! - Added the nursery rulenoBaseToString, which reports stringification sites that fall back to Object's default"[object Object]"formatting. The rule also supports theignoredTypeNamesoption.#10143
56798a7Thanks @minseong0324! -useExhaustiveSwitchCasesnow checks switch statements over object literal properties initialized withas const.This switch is now reported because
status.kindis inferred as the string literal"ready"but no case handles it:#10143
56798a7Thanks @minseong0324! -useStringStartsEndsWithnow detects string index comparisons on object literal properties initialized withas const.This comparison is now reported because
message.valueis inferred as a string literal:jestjs/jest (@jest/globals)
v30.4.1Compare Source
Features
[jest-config, jest-core, jest-runner, jest-schemas, jest-types]Allow custom runner configuration options via tuple format['runner-path', {options}](#16141)Fixes
[jest-runtime]Align CJS-from-ESM default export with Node:module.exportsis always the ESM default,__esModuleunwrapping is no longer applied (#16143)v30.4.0Compare Source
Features
[babel-jest]Support collecting coverage from.mts,.cts(and other) files (#15994)[jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, jest-types]Add--collect-testsflag to discover and list tests without executing them (#16006)[jest-config, jest-runner, jest-worker]AddworkerGracefulExitTimeoutconfig option to control how long workers are given to exit before being force-killed (#15984)[jest-config]Add support forjest.config.mtsas a valid configuration file (#16005)[jest-config, jest-core, jest-reporters, jest-runner]verboseandsilentcan now be set per-project; the project-level value overrides the global value for that project's tests (#16133)[@jest/fake-timers]AcceptTemporal.Durationinjest.advanceTimersByTime()andjest.advanceTimersByTimeAsync()(#16128)[@jest/fake-timers]AcceptTemporal.InstantandTemporal.ZonedDateTimeinjest.setSystemTime()anduseFakeTimers({now})(#16128)[@jest/fake-timers]Support fakingTemporal.Now.*(#16131)[jest-mock]AddclearMocksOnScope(scope)onModuleMockerfor clearing every mock function exposed on a scope object (#16088)[jest-resolve]AddcanResolveSync()onResolverso callers can detect when a user-configured resolver only exports anasynchook (#16064)[jest-runtime]Use synchronousevaluate()for ES modules without top-levelawaiton Node versions that support it (v24.9+), and prefer the synchronous transform path when a sync transformer is configured (#16062)[jest-runtime]Supportrequire()of ES modules on Node v24.9+ (#16074)[jest-runtime]Validate TC39 import attributes (with { type: 'json' }) on ESM imports (#16127)[@jest/transform]AddcanTransformSync(filename)onScriptTransformerso callers can pick the sync vs async transform path (#16062)[jest-util]AddisErrorhelper (#16076)[pretty-format]Support React 19 (#16123)Fixes
[expect-utils]FixtoStrictEqualfailing onstructuredCloneresults due to cross-realm constructor mismatch (#15959)[@jest/expect-utils]PreventtoMatchObject/subset matching from throwing when encountering exotic iterables (#15952)[fake-timers]ConvertDateto milliseconds before passing to@sinonjs/fake-timers(#16029)[jest]ExportGlobalConfigandProjectConfigTypeScript types (#16132)[jest-circus]Prevent crash whenasyncErroris undefined for non-Error throws (#16003)[jest-circus, jest-jasmine2]IncludeError.causein JSONfailureMessagesoutput (#15967)[jest-config]Fix preset path resolution on Windows when the preset uses subpathexports(#15961)[jest-config]AllowcollectCoverageandcoverageProviderin project config without a validation warning (#16132)[jest-config]Project config validator now emits "is not supported in an individual project configuration" instead of "probably a typing mistake" for known global-only options (#16132)[jest-environment-node]Fix--localstorage-filewarning on Node 25+ (#16086)[jest-reporters]Apply global coverage threshold to unmatched pattern files in addition to glob/path thresholds (#16137)[jest-reporters, jest-runner, jest-runtime, jest-transform]Fix coverage report not showing correct code coverage when usingprojectsconfig option (#16140)[jest-runtime]Resolveexpectand@jest/expectfrom the internal module registry so test-file imports share the sameJestAssertionErroras the globalexpect(#16130)[jest-runtime]Improve CJS-from-ESM interop:__esModule/Babel default unwrap, broader named-export coverage, and shared CJS singleton across importers (#16050)[jest-runtime]Load.jsfiles with ESM syntax but no"type":"module"marker as native ESM (#16050)[jest-runtime]Extend the.js-with-ESM-syntax fallback torequire()on Node v24.9+ - falls back torequire(esm)when the CJS parser rejects ESM syntax (#16078)[jest-runtime]Fix deadlocks and double-evaluation in concurrent ESM and wasm imports (#16050)[jest-runtime]Fix error whenrequire()is called after the Jest environment has been torn down (#15951)[jest-runtime]Fix missing error whenimport()is called after the Jest environment has been torn down (#16080)[jest-runtime]Fix virtualunstable_mockModuleregistrations not respected in ESM (#16081)[jest-runtime]ApplymoduleNameMapperwhen resolving modules withrequire.resolve()and thepathsoption (#16135)Chore & Maintenance
[@jest/fake-timers]Upgrade@sinonjs/fake-timers(#16139)[jest-runtime]Use synchronouslinkRequests/instantiatefor ESM linking on Node v24.9+ (#16063)getsentry/sentry-javascript (@sentry/react)
v10.52.0Compare Source
Important Changes
Beta release of the official Hono Sentry SDK
This release marks the beta release of the
@sentry/honoSentry SDK. For details on how to use it, check out theSentry Hono SDK docs. Please reach out on
GitHub if you have any feedback or concerns.
feat(browser): Add
ingest_settingsto v2 log envelope payload (#20453)Inference of user data (e.g. IP address, browser name/version) on log events is now gated behind the
sendDefaultPiioption. Previously, this data was always inferred by default.Other Changes
ingest_settingsto v2 metrics envelope payload (#20454)ignoreSpans(#20595)processSegmentSpanto Deno context integration (#20613)processSegmentSpanto node context integration (#20678)Internal Changes
bundle-analyzer-scenariosdev packages (#20680)npmrcpointing to Verdaccio (#20611)Work in this release was contributed by @sbs44. Thank you for your contribution!
Bundle size 📦
firebase/firebase-js-sdk (firebase)
v12.13.0Compare Source
For more detailed release notes, see Firebase JavaScript SDK Release Notes.
What's Changed
@firebase/ai@2.12.0
Minor Changes
ffa39f6#9795 - AddedLiveSession.resumeSession()to allow resuming a previousLiveSession. Also addedcontextWindowCompressionfeature.86dc0db#9819 - Added support forImageConfig(aspect ratio and size).Expanded
FinishReasonvalues to include all currently available values provided by the models.345c5f6#9458 - AI Logic : Feature : Added support for Grounding with Google Maps.Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/app-check-interop-types@0.3.4
@firebase/component@0.7.3
@firebase/logger@0.5.1
@firebase/util@1.15.1
@firebase/data-connect@0.7.0
Minor Changes
714b41d#9905 - Hardened the Firebase SQL Connect streaming transport with intelligent reconnection, query de-duplication, and resume optimizations.Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/auth-interop-types@0.2.5
@firebase/component@0.7.3
@firebase/logger@0.5.1
@firebase/util@1.15.1
firebase@12.13.0
Minor Changes
ffa39f6#9795 - AddedLiveSession.resumeSession()to allow resuming a previousLiveSession. Also addedcontextWindowCompressionfeature.714b41d#9905 - Hardened the Firebase SQL Connect streaming transport with intelligent reconnection, query de-duplication, and resume optimizations.86dc0db#9819 - Added support forImageConfig(aspect ratio and size).Expanded
FinishReasonvalues to include all currently available values provided by the models.345c5f6#9458 - AI Logic : Feature : Added support for Grounding with Google Maps.Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
96e81ff,ffa39f6,402b1f0,8e384c9,714b41d,86dc0db,345c5f6]:@firebase/firestore@4.14.1
@firebase/ai@2.12.0
@firebase/auth-compat@0.6.6
@firebase/analytics@0.10.22
@firebase/analytics-compat@0.2.28
@firebase/app@0.14.12
@firebase/app-check@0.11.3
@firebase/app-check-compat@0.4.3
@firebase/app-compat@0.5.12
@firebase/app-types@0.9.5
@firebase/auth@1.13.1
@firebase/data-connect@0.7.0
@firebase/database@1.1.3
@firebase/database-compat@2.1.4
@firebase/firestore-compat@0.4.9
@firebase/functions@0.13.4
@firebase/functions-compat@0.4.4
@firebase/installations@0.6.22
@firebase/installations-compat@0.2.22
@firebase/messaging@0.12.26
@firebase/messaging-compat@0.2.26
@firebase/performance@0.7.12
@firebase/performance-compat@0.2.25
@firebase/remote-config@0.8.3
@firebase/remote-config-compat@0.2.24
@firebase/storage@0.14.3
@firebase/storage-compat@0.4.3
@firebase/util@1.15.1
@firebase/analytics@0.10.22
Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/component@0.7.3
@firebase/installations@0.6.22
@firebase/logger@0.5.1
@firebase/util@1.15.1
@firebase/analytics-compat@0.2.28
Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/analytics@0.10.22
@firebase/analytics-types@0.8.4
@firebase/component@0.7.3
@firebase/util@1.15.1
@firebase/analytics-interop-types@0.3.5
Patch Changes
8e384c9#9883 - Updated dependencies.@firebase/analytics-types@0.8.4
Patch Changes
8e384c9#9883 - Updated dependencies.@firebase/app@0.14.12
Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/component@0.7.3
@firebase/logger@0.5.1
@firebase/util@1.15.1
@firebase/app-check@0.11.3
Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/component@0.7.3
@firebase/logger@0.5.1
@firebase/util@1.15.1
@firebase/app-check-compat@0.4.3
Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/app-check@0.11.3
@firebase/app-check-types@0.5.4
@firebase/component@0.7.3
@firebase/logger@0.5.1
@firebase/util@1.15.1
@firebase/app-check-interop-types@0.3.4
Patch Changes
8e384c9#9883 - Updated dependencies.@firebase/app-check-types@0.5.4
Patch Changes
8e384c9#9883 - Updated dependencies.@firebase/app-compat@0.5.12
Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/app@0.14.12
@firebase/component@0.7.3
@firebase/logger@0.5.1
@firebase/util@1.15.1
@firebase/app-types@0.9.5
Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/logger@0.5.1
@firebase/auth@1.13.1
Patch Changes
8e384c9#9883 - Updated dependencies.Updated dependencies [
8e384c9]:@firebase/component@0.7.3
@firebase/logger@0.5.1
@firebase/util@1.15.1
@firebase/auth-compat@0.6.6
Patch Changes
8e384c9](https://redirect.github.com/firebase/fConfiguration
📅 Schedule: (in timezone America/New_York)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.